
.smat-select {
	display: block;
	position: relative;
	text-align: left;
	width: 100%;
	height: 50px;
	min-width: 100px;
	padding: 2px;
	padding-top: 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 0 1px #D9D9D9 inset;
	box-shadow: 0 0 0 1px #D9D9D9 inset;
	
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

.smat-select::before {
	display: block;
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	border-radius: inherit;
	background: #279af2;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%);
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%);
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%);
	-webkit-transition: opacity 0.15s ease 0s;
	-ms-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.smat-select.show::before,
.smat-select.selected::before,
.body-desktop-device .smat-select:hover::before,
.body-desktop-device .smat-select:active::before,
.body-mobile-device .smat-select:active::before {
	opacity: 1;
}

.smat-select select {
	display: none;
}

body.smat-select-mobile {
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

body.smat-select-mobile.smat-select-float {
	overflow: hidden;
	height: 100vh;
}

body.smat-select-mobile.smat-select-float > .page {
	position: relative;
	overflow: hidden;
	height: 100vh;
}


/* ************************************************************************** */


.smat-select__val {
	padding-right: 45px;
	position: relative;
	z-index: 2;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 46px;
	color: #333333;
	background: #ffffff;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	cursor: pointer;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.error .smat-select__val {
	border-bottom-color: #EC1A2A;
}

body.smat-select-desktop .smat-select__val:hover {
	color: #333E48;
	border-color: #323238;
}

body.smat-select-desktop .smat-select__val:active,
body.smat-select-mobile .smat-select__val:active {
	color: #333E48;
	border-color: #323238;
}

body.smat-select-desktop .smat-select.focus .smat-select__val,
body.smat-select-mobile .smat-select.focus .smat-select__val {
	color: #333E48;
	border-color: #333E48;
}

body.smat-select-desktop .smat-select.disabled .smat-select__val,
body.smat-select-mobile .smat-select.disabled .smat-select__val {
	cursor: default;
	border-color: #b5b5b5;
}


/* ************************************************************************** */


.smat-select__val-text {
	position: relative;
	top: -1px;
	height: 46px;
	cursor: pointer;
	z-index: 2;
	padding-left: 20px;
	padding-right: 40px;
	font: normal 20px/46px 'DINPro';
	color: currentColor;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

input.smat-select__val-text::-ms-clear {
   display: none;
}

input.smat-select__val-text::-ms-reveal {
   display: none;
}

input.smat-select__val-text::-webkit-input-placeholder {
	color: #333333 !important;
	opacity: 1;
}

input.smat-select__val-text::-moz-placeholder {
	color: #333333 !important;
	opacity: 1;
}

input.smat-select__val-text:-moz-placeholder {
	color: #333333 !important;
	opacity: 1;
}

input.smat-select__val-text:-ms-input-placeholder {
	color: #333333 !important;
	opacity: 1;
}

.smat-select__val-text.placeholder {
	color: #333333;
}

.smat-select.disabled .smat-select__val-text {
	cursor: default;
}


/* ************************************************************************** */


.smat-select__val-arrow {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	width: 25px;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	-ms-transition: -ms-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
}

.smat-select__val-arrow::after {
	display: block;
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	left: 2px;
	width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #323238;
}

.smat-select.show .smat-select__val-arrow {
	-webkit-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.smat-select.empty-search .smat-select__val-arrow {
	-webkit-transform: rotateX(0);
	-ms-transform: rotateX(0);
	transform: rotateX(0);
}


/* ************************************************************************** */


.smat-select__val-img-before {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	overflow: hidden;
	margin-left: 15px;
}

.smat-select__val-img-before img {
	display: block;
    max-width: 100%;
	max-height: 100%;
}

.smat-select__val-img-before svg {
	display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* ************************************************************************** */


.smat-select__val-img-after {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	right: 35px;
	overflow: hidden;
}

.smat-select__val-img-after img {
	display: block;
    max-width: 100%;
    max-height: 100%;
}

.smat-select__val-img-after svg {
	display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* ************************************************************************** */


.smat-select__val-hint {
	display: block;
	position: absolute;
	top: 1px;
	left: 20px;
	font: normal 10px/1em "Roboto", Arial, serif;
	color: #b7b7b7;
}

.smat-select.disabled .smat-select__val-hint {
	display: none;
}


/* ************************************************************************** */


.smat-select__val-txt-after {
	display: block;
	position: absolute;
	right: 35px;
	top: 15px;
	font: bold 12px/1em "Roboto", Arial, serif;
	color: currentColor;
}


/* ************************************************************************** */


.smat-select-overlay {
	position: absolute;
	z-index: 100000;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background: transparent;
	-webkit-transition: height 0s ease 0.2s;
	-ms-transition: height 0s ease 0.2s;
	transition: height 0s ease 0.2s;
}

.smat-select-overlay.mobile.active.float {
	position: fixed;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-transition: height 0s ease 0s;
	-ms-transition: height 0s ease 0s;
	transition: height 0s ease 0s;
}


/* ************************************************************************** */


.smat-select__drop {
	display: block;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	right: 0;
	opacity: 0;
	outline: none;
	margin-top: 4px;
	margin-right: -4px;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: -webkit-transform 0.1s ease 0s, opacity 0.1s ease 0s;
	-ms-transition: -ms-transform 0.1s ease 0s, opacity 0.1s ease 0s;
	transition: transform 0.1s ease 0s, opacity 0.1s ease 0s;
}

.smat-select__drop.show-top {
	margin-top: 0px;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

.smat-select__drop-outer {
	background: #fff;
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.smat-select-overlay.mobile .smat-select__drop {
	-webkit-transition: -webkit-transform 0.1s ease 0s, opacity 0s ease 0s;
	-ms-transition: -ms-transform 0.1s ease 0s, opacity 0s ease 0s;
	transition: transform 0.1s ease 0s, opacity 0s ease 0s;
}

.smat-select-overlay.mobile.float .smat-select__drop {
	position: absolute;
	margin: 0;
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	width: calc(100% - 30px);
	max-width: 400px;
	-webkit-transform: translateX(-50%) translateY(-50%) scaleY(0);
	-moz-transform: translateX(-50%) translateY(-50%) scaleY(0);
	-ms-transform: translateX(-50%) translateY(-50%) scaleY(0);
	transform: translateX(-50%) translateY(-50%) scaleY(0);
	-webkit-transition: opacity 0s ease 0s;
	-ms-transition: opacity 0s ease 0s;
	transition: opacity 0s ease 0s;
}

.smat-select__drop.show {
	opacity: 1;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.smat-select__drop.show .smat-select__drop-outer {
}

.smat-select-overlay.mobile.float .smat-select__drop.show {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scaleY(1);
	-moz-transform: translateX(-50%) translateY(-50%) scaleY(1);
	-ms-transform: translateX(-50%) translateY(-50%) scaleY(1);
	transform: translateX(-50%) translateY(-50%) scaleY(1);
}

.smat-select__drop.empty-search {
	opacity: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translateY(-50%) scaleY(0);
	-moz-transform: translateY(-50%) scaleY(0);
	-ms-transform: translateY(-50%) scaleY(0);
	transform: translateY(-50%) scaleY(0);
}

.smat-select__drop-arrow {
	position: absolute;
	display: none !important;
	content: '';
	top: -7px;
	bottom: auto;
	left: 50%;
	margin-left: -8px;
	width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-top: none;
}

.smat-select__drop.show-top .smat-select__drop-arrow {
	bottom: -7px;
	top: auto;
	border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: none;
}

.smat-select-overlay.mobile.float .smat-select__drop .smat-select__drop-arrow {
	display: none;
}

.smat-select__drop-inner {
	padding: 10px 0;
}

.smat-select__drop-header {
	display: none;
	position: relative;
	height: 30px;
	padding-left: 15px;
	padding-right: 50px;
	font-weight: normal;
	font-size: 17px;
	line-height: 1em;
	font-family: "Roboto", Arial, serif;
	font-size: 20px;
	color: #323238;
    letter-spacing: 0.03em;
}

.smat-select__drop-header-title {
	display: block;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.smat-select__drop-close.inside {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -3px;
	right: 7px;
}

.smat-select__drop-close.outside {
	display: block;
	position: relative;
	right: -14px;
	width: 50px;
	height: 50px;
	margin-left: auto;
	margin-bottom: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: transparent;
}

.smat-select__drop-close span {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.smat-select__drop-close span::before,
.smat-select__drop-close span::after {
	display: block;
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	margin-top: -1px;
	margin-left: -12px;
	width: 24px;
	height: 2px;
	background: #000000;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.smat-select__drop-close.outside span::before,
.smat-select__drop-close.outside span::after {
	background: #ffffff;
}

.smat-select__drop-close span::after {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.smat-select__drop-close:active span::before,
.smat-select__drop-close:active span::after {
	background: green;
}

.smat-select__drop-close.outside:active span,
.smat-select__drop-close.outside:active span {
	background: #163b65;
}

.smat-select__drop-close.outside:active span::before,
.smat-select__drop-close.outside:active span::after {
	background: #ffffff;
}


/* ************************************************************************** */


.smat-select__drop-list {
}

.smat-select__drop-ul-wrap {
	overflow-y: scroll;
}

.smat-select__drop-ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}


/* ************************************************************************** */


.smat-select__drop-ul li {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 40px;
	font: normal 20px/1.5em 'DINPro';
	color: #333333;
	cursor: pointer;
	-webkit-box-shadow: 0 0 0 1px #ffffff;
	box-shadow: 0 0 0 1px #ffffff;
	-webkit-transition: background-color 0.3s ease 0s;
	-ms-transition: background-color 0.3s ease 0s;
	transition: background-color 0.3s ease 0s;
}

.smat-select__drop-ul li.hidden {
	display: none;
}


/* ************************************************************************** */


.smat-select__drop-ul li span.txt {
	display: block;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 3px;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}


/* ************************************************************************** */


.smat-select__drop-ul li span.txt-after {
	display: block;
	position: absolute;
	right: 25px;
	top: 8px;
	font-size: 12px;
	font-weight: bold;
}


/* ************************************************************************** */


.smat-select__drop-ul li span.img-before {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 15px;
	width: 25px;
	height: 25px;
	overflow: hidden;
}

.smat-select__drop-ul li span.img-before img {
	display: block;
    border: none;
    max-width: 100%;
    max-height: 100%;
}

.smat-select__drop-ul li span.img-before svg {
	display: block;
    width: 100%;
    height: 100%;
	fill: currentColor;
}


/* ************************************************************************** */


.smat-select__drop-ul li span.img-after {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	overflow: hidden;
}

.smat-select__drop-ul li span.img-after img {
	display: block;
    max-width: 100%;
    max-height: 100%;
}

.smat-select__drop-ul li span.img-after svg {
	display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* ************************************************************************** */


.smat-select__drop .scroll-wrapper .scroll-element .scroll-element_track::before {
	background: #ffffff;
}


/* ************************************************************************** */


.smat-select__drop-ul li.active {
	color: #ffffff !important;
	background: #279af2 !important;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%) !important;
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%) !important;
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%) !important;
}

.smat-select__drop-ul li.selected,
.smat-select__drop-ul li.selected.active {
	color: #ffffff !important;
	background: #279af2 !important;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%) !important;
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%) !important;
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%) !important;
}


body.smat-select-desktop .smat-select__drop-ul li:hover {
	color: #ffffff !important;
	background: #279af2 !important;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%) !important;
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%) !important;
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%) !important;
}

body.smat-select-desktop .smat-select__drop-ul li:active,
body.smat-select-mobile .smat-select__drop-ul li:active {
	color: #ffffff !important;
	background: #279af2 !important;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%) !important;
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%) !important;
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%) !important;
}

body.smat-select-desktop .smat-select__drop-ul li.active:active,
body.smat-select-mobile .smat-select__drop-ul li.active:active {
	color: #ffffff !important;
	background: #279af2 !important;
	background: -moz-linear-gradient(left,  #279af2 0%, #b435f2 100%) !important;
	background: -webkit-linear-gradient(left,  #279af2 0%,#b435f2 100%) !important;
	background: linear-gradient(to right,  #279af2 0%,#b435f2 100%) !important;
}










